home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 076-100 / disk_098 / thai / trans.h < prev    next >
C/C++ Source or Header  |  1992-05-06  |  272b  |  18 lines

  1.  
  2. #define MAX_SYL_LENGTH    12
  3.  
  4. #define HIGH_TONE        0
  5. #define RISING_TONE        1
  6. #define MIDDLE_TONE        2
  7. #define COMMON_TONE        2
  8. #define LOW_TONE        3
  9. #define FALLING_TONE    4
  10. #define DROPPING_TONE    4
  11.  
  12. struct syllable {
  13.     SHORT    tone;
  14.     SHORT    duration;
  15.     char    phonemes[ MAX_SYL_LENGTH ];
  16. };
  17.  
  18.